home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstdio.arc / INCLUDE.ARC / ASCII.AH next >
Text File  |  1984-11-09  |  1KB  |  43 lines

  1. ;    ascii.ah - ASCII character definitions.
  2. ;    G. R. Mansfield.  84/01/07.
  3. ;    Ver 1.1-4A26.
  4.  
  5. CV_NUL    equ    000h        ; null
  6. CV_SOH    equ    001h        ; start of header
  7. CV_STX    equ    002h        ; start of text
  8. CV_ETX    equ    003h        ; end of text
  9. CV_EOT    equ    004h        ; end of transmission
  10. CV_ENQ    equ    005h        ; enquire
  11. CV_ACK    equ    006h        ; acknowledge
  12. CV_BEL    equ    007h        ; bell
  13. CV_BS    equ    008h        ; backspace
  14. CV_HT    equ    009h        ; horizontal tab
  15. CV_LF    equ    00Ah        ; line feed
  16. CV_VT    equ    00Bh        ; vertical tab
  17. CV_FF    equ    00Ch        ; form feed
  18. CV_CR    equ    00Dh        ; carriage return 
  19. CV_SO    equ    00Eh        ; shift out
  20. CV_SI    equ    00Fh        ; shift in
  21.  
  22. CV_DLE    equ    010h        ; data link escape
  23. CV_DC1    equ    011h        ; device control 1
  24. CV_DC2    equ    012h        ; device control 2
  25. CV_DC3    equ    013h        ; device control 3
  26. CV_DC4    equ    014h        ; device control 4
  27. CV_NAK    equ    015h        ; negative acknowledge
  28. CV_SYN    equ    016h        ; synchronous idle
  29. CV_ETB    equ    017h        ; end transmission block
  30. CV_CAN    equ    018h        ; cancel
  31. CV_EM    equ    019h        ; end of medium
  32. CV_SUB    equ    01Ah        ; substitute
  33. CV_ESC    equ    01Bh        ; escape
  34. CV_FS     equ    01Ch        ; file separator
  35. CV_GS    equ    01Dh        ; group separator
  36. CV_RS    equ    01Eh        ; record separator
  37. CV_US    equ    01Fh        ; unit separator
  38.  
  39. CV_SP    equ    020h        ; SPACE
  40. CV_DEL    equ    07Fh        ; DELETE
  41.  
  42.  
  43.